+2007-01-06 Michael Schumacher <schumaml@cvs.gnome.org>
+
+ * docs/Makefile.am: added EXEEXT to the tools used in some
+ commands
+
+ * docs/tools/changelog2rss: remove unused SET_TITLE and
+ LISTING_TYPE; the former did cause an error on Windows
+
2007-01-01 Kevin Cozens <kcozens@cvs.gnome.org>
* docs/index-static.html.in: Fixes for various punctuation, grammar,
all: $(HTML_FILES) rss
-BablFishPath.html: $(top_builddir)/tests/babl_fish_path_dhtml
+BablFishPath.html: $(top_builddir)/tests/babl_fish_path_dhtml$(EXEEXT)
echo -n "HTML:"
echo -n " $@"
export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\
echo " [OK]" || echo " Fail"
-BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness
+BablFishPath.txt: $(top_builddir)/tests/babl_fish_path_fitness$(EXEEXT)
echo -n "UTF8:"
echo -n " $@"
export BABL_PATH="$(top_builddir)/extensions"; $< > $@ &&\
if [ "x"$$CRUCIBLE_ID != "x" ] ;then echo;echo;cat $@;echo;echo;fi
index.html: index-static.html \
- $(top_builddir)/tests/babl_html_dump \
+ $(top_builddir)/tests/babl_html_dump$(EXEEXT) \
$(top_srcdir)/AUTHORS \
$(top_srcdir)/NEWS \
BablFishPath.txt \
echo -n "HTML: $@"
cp $< $@
(which tempfile > /dev/null&& TMPFILE=`tempfile` || TMPFILE="/tmp/babl_build_tempfile" ;\
- export BABL_PATH="$(top_builddir)/extensions"; $(top_builddir)/tests/babl_html_dump > $$TMPFILE;\
+ export BABL_PATH="$(top_builddir)/extensions"; $(top_builddir)/tests/babl_html_dump$(EXEEXT) > $$TMPFILE;\
$(top_srcdir)/docs/tools/xml_insert.sh $@ BablBase $$TMPFILE;\
rm -f $$TMPFILE )
echo -n "."
require 'parsedate'
-SITE_TITLE = `pwd`.chomp.split('/').last
-
-LISTING_TYPE = 0
-
class ChangeLogEntry
attr_accessor :category, :time, :title, :content, :author